home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Locus / Source / SendAction.h < prev    next >
Text File  |  1995-06-12  |  731b  |  44 lines

  1.  
  2. /*
  3.     Copyright 1993  Jeremy Slade.
  4.  
  5.     You are free to use all or any parts of the Locus project
  6.     however you wish, just give credit where credit is due.
  7.     The author (Jeremy Slade) shall not be held responsible
  8.     for any damages that result out of use or misuse of any
  9.     part of this project.
  10.  
  11. */
  12.  
  13. /*
  14.     Project: Locus
  15.  
  16.     File: SendAction.h
  17.  
  18.     Description:
  19.     
  20.     Defines a Category of Control that cause it to send its action to its target.
  21.         
  22.     Original Author: Jeremy Slade
  23.  
  24.     Revision History:
  25.         Created
  26.             V.101    JGS    Thu Mar  4 19:23:25 GMT-0700 1993
  27.  
  28. */
  29.  
  30. #ifndef SendAction_h
  31. #define SendAction_h
  32.  
  33. #define SendAction_VERSION        (101)
  34.  
  35. #import <appkit/Control.h>
  36.  
  37. @interface Control ( SendAction )
  38.  
  39. - sendAction;
  40.  
  41. @end
  42.  
  43. #endif // SendAction_h
  44.